home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / libc.h < prev    next >
C/C++ Source or Header  |  1991-10-02  |  969b  |  30 lines

  1. /*
  2.  * libc.h --
  3.  *
  4.  *    Declarations for libc functions that don't already have a 
  5.  *    header file assigned to them.
  6.  *
  7.  * Copyright 1990 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/lib/include/RCS/libc.h,v 1.3 91/10/02 18:50:03 kupfer Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _LIBC
  20. #define _LIBC
  21.  
  22. #include <cfuncproto.h>
  23.  
  24. _EXTERN int Misc_InvokeEditor _ARGS_((char *file));
  25. _EXTERN int alarm _ARGS_ ((unsigned seconds));
  26. _EXTERN int gethostname _ARGS_ ((char *name, int namelen));
  27. _EXTERN int sethostname _ARGS_ ((char *name, int namelen));
  28.  
  29. #endif /* _LIBC */
  30.